home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / bsvc-1.000 / bsvc-1 / bsvc-1.0.4 / src / Framework / Makefile < prev    next >
Makefile  |  1995-07-26  |  870b  |  38 lines

  1. ###############################################################################
  2. # $Header:$
  3. ###############################################################################
  4. #
  5. # Makefile.common - System Independent Makefile
  6. #
  7. # Bradford W. Mott
  8. # July 3,1994
  9. #
  10. ###############################################################################
  11. # $Log:$
  12. ###############################################################################
  13.  
  14. ## Library to build
  15. LIBRARY = libfw.a
  16.  
  17. ## List of object files that need to be made
  18. OBJS = Event.o Time.o RegInfo.o StatInfo.o BasicDeviceRegistry.o \
  19.        BasicDevice.o Interface.o AddressSpace.o BreakpointList.o Tools.o
  20.  
  21. all: $(LIBRARY)
  22.  
  23. install:
  24.  
  25. $(LIBRARY): $(OBJS)
  26.     $(AR) $(AR_CREATE_FLAGS) $(LIBRARY) $(OBJS)
  27.     $(RANLIB) $(LIBRARY)
  28.  
  29. .SUFFIXES: .cxx .a
  30.  
  31. .cxx.o:
  32.     $(CC) $(INCLUDES) -c $(CPPFLAGS) $*.cxx
  33.  
  34. clean:
  35.     rm -f *.o $(LIBRARY)
  36.  
  37.  
  38.